5f1af3aceb5ccf0e82510b4be5709ec21e98c04c,CLI/src/main/java/org/cloudifysource/shell/rest/RestAdminFacade.java,RestAdminFacade,installApplication,#File#String#,766
Before Change
String result = null;
try {
final String url = SERVICE_CONTROLLER_URL + "applications/" + applicationName;
result = client.postFile(url, applicationFile);
} catch (final ErrorStatusException e) {
throw new CLIStatusException(e, e.getReasonCode(), e.getArgs());
} catch (final RestException e) {
After Change
Map<String, String> result = null;
try {
final String url = SERVICE_CONTROLLER_URL + "applications/" + applicationName + "/timeout/" + timeout;
result = (Map<String, String>)client.postFile(url, applicationFile);
} catch (final ErrorStatusException e) {
throw new CLIStatusException(e, e.getReasonCode(), e.getArgs());
} catch (final RestException e) {